home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / Ex_Right.dxr / 00054.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  218 b   |  11 lines

  1. on exitFrame
  2.   global a, b, c
  3.   set b to field "B"
  4.   put b * b into field "B2"
  5.   set c to field "C"
  6.   put c * c into field "C2"
  7.   set a to sqrt((c * c) - (b * b))
  8.   put a into field "A"
  9.   put a * a into field "A2"
  10. end
  11.